home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / StdioFileReadProc.c,v < prev    next >
Text File  |  1991-12-02  |  5KB  |  215 lines

  1. head     1.5;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.5.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.5
  10. date     90.09.11.14.27.19;  author kupfer;  state Exp;
  11. branches 1.5.1.1;
  12. next     1.4;
  13.  
  14. 1.4
  15. date     88.07.28.17.18.12;  author ouster;  state Exp;
  16. branches ;
  17. next     1.3;
  18.  
  19. 1.3
  20. date     88.07.25.14.12.36;  author ouster;  state Exp;
  21. branches ;
  22. next     1.2;
  23.  
  24. 1.2
  25. date     88.07.20.18.12.09;  author ouster;  state Exp;
  26. branches ;
  27. next     1.1;
  28.  
  29. 1.1
  30. date     88.06.10.16.23.32;  author ouster;  state Exp;
  31. branches ;
  32. next     ;
  33.  
  34. 1.5.1.1
  35. date     91.12.02.19.54.11;  author kupfer;  state Exp;
  36. branches ;
  37. next     ;
  38.  
  39.  
  40. desc
  41. @@
  42.  
  43.  
  44. 1.5
  45. log
  46. @Use function prototypes. Lint.
  47. @
  48. text
  49. @/* 
  50.  * StdioFileReadProc.c --
  51.  *
  52.  *    Source code for the "StdioFileReadProc" procedure, which is used
  53.  *    internally by the stdio library to flush buffers for streams
  54.  *    associated with files and other OS-supported streams.
  55.  *
  56.  * Copyright 1988 Regents of the University of California
  57.  * Permission to use, copy, modify, and distribute this
  58.  * software and its documentation for any purpose and without
  59.  * fee is hereby granted, provided that the above copyright
  60.  * notice appear in all copies.  The University of California
  61.  * makes no representations about the suitability of this
  62.  * software for any purpose.  It is provided "as is" without
  63.  * express or implied warranty.
  64.  */
  65.  
  66. #ifndef lint
  67. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/StdioFileReadProc.c,v 1.4 88/07/28 17:18:12 ouster Exp Locker: kupfer $ SPRITE (Berkeley)";
  68. #endif not lint
  69.  
  70. #include "stdio.h"
  71. #include "fileInt.h"
  72. #include "stdlib.h"
  73. #include <errno.h>
  74. #include <unistd.h>
  75.  
  76. /*
  77.  *----------------------------------------------------------------------
  78.  *
  79.  * StdioFileReadProc --
  80.  *
  81.  *    This procedure is invoked when another character is needed
  82.  *    from a stream and the buffer is empty.  It's used for all
  83.  *    streams that are associated with files (or pipes, or anything
  84.  *    for which the file-related system calls apply).
  85.  *
  86.  * Results:
  87.  *    None.
  88.  *
  89.  * Side effects:
  90.  *    If the stream is readable, a bunch of new bytes are read into
  91.  *    stream's buffer and readCount is set to indicate how many
  92.  *    bytes there are.  The error and end-of-file fields in stream
  93.  *    are set if any problems occur.
  94.  *
  95.  *    If the stream is stdin, then any line-buffered file streams
  96.  *    are flushed.
  97.  *
  98.  *----------------------------------------------------------------------
  99.  */
  100.  
  101. void
  102. StdioFileReadProc(stream)
  103.     register FILE *stream;    /* Stream whose buffer needs filling.  The
  104.                  * stream must be readable.  The clientData
  105.                  * field of stream gives a Sprite stream index.
  106.                  */
  107. {
  108.     register FILE *    stream2;
  109.  
  110.     /*
  111.      * Before doing any input from stdin, flush line-buffered
  112.      * streams.
  113.      */
  114.     
  115.     if (stream == stdin) {
  116.     for (stream2 = stdioFileStreams; stream2 != NULL;
  117.         stream2 = stream2->nextPtr) {
  118.         if (stream2->flags & STDIO_LINEBUF) {
  119.         fflush(stream2);
  120.         }
  121.     }
  122.     }
  123.  
  124.     /*
  125.      * Create buffer space for this stream if there isn't any yet.
  126.      */
  127.  
  128.     if (stream->bufSize == 0) {
  129.     stream->bufSize = BUFSIZ;
  130.     stream->buffer = (unsigned char *) malloc((unsigned) stream->bufSize);
  131.     }
  132.  
  133.     stream->readCount = read((int) stream->clientData, (char *) stream->buffer,
  134.         stream->bufSize);
  135.     stream->lastAccess = stream->buffer - 1;
  136.     if (stream->readCount <= 0) {
  137.     if (stream->readCount == 0) {
  138.         stream->flags |= STDIO_EOF;
  139.     } else {
  140.         stream->readCount = 0;
  141.         stream->status = errno;
  142.     }
  143.     }
  144. }
  145. @
  146.  
  147.  
  148. 1.5.1.1
  149. log
  150. @Initial branch for Sprite server.
  151. @
  152. text
  153. @d19 1
  154. a19 1
  155. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/StdioFileReadProc.c,v 1.5 90/09/11 14:27:19 kupfer Exp $ SPRITE (Berkeley)";
  156. @
  157.  
  158.  
  159. 1.4
  160. log
  161. @More lint.
  162. @
  163. text
  164. @d19 1
  165. a19 1
  166. static char rcsid[] = "$Header: StdioFileReadProc.c,v 1.3 88/07/25 14:12:36 ouster Exp $ SPRITE (Berkeley)";
  167. d26 1
  168. @
  169.  
  170.  
  171. 1.3
  172. log
  173. @Lint.
  174. @
  175. text
  176. @d19 1
  177. a19 1
  178. static char rcsid[] = "$Header: StdioFileReadProc.c,v 1.2 88/07/20 18:12:09 ouster Exp $ SPRITE (Berkeley)";
  179. d81 1
  180. a81 1
  181.     stream->buffer = (unsigned char *) malloc(stream->bufSize);
  182. @
  183.  
  184.  
  185. 1.2
  186. log
  187. @Change file streams so that fdopen can be called more than once
  188. for a given stream id, and get separate buffers.
  189. @
  190. text
  191. @d19 1
  192. a19 1
  193. static char rcsid[] = "$Header: StdioFileReadProc.c,v 1.1 88/06/10 16:23:32 ouster Exp $ SPRITE (Berkeley)";
  194. a59 1
  195.     int            i;
  196. @
  197.  
  198.  
  199. 1.1
  200. log
  201. @Initial revision
  202. @
  203. text
  204. @d19 1
  205. a19 1
  206. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  207. d68 2
  208. a69 5
  209.     for (i = 1; i < stdioNumFileStreams; i++) {
  210.         stream2 = stdioFileStreams[i];
  211.         if (stream2 == NULL) {
  212.         continue;
  213.         }
  214. @
  215.